home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000384_robert.oo.watson@gmail.com_Wed Jul 12 12:31:19 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!panix!newsfeed.media.kyoto-u.ac.jp!newshub.sdsu.edu!postnews.google.com!m79g2000cwm.googlegroups.com!not-for-mail
  2. From: robert.oo.watson@gmail.com
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: File transferring using xmedom
  5. Date: 12 Jul 2006 03:56:43 -0700
  6. Organization: http://groups.google.com
  7. Lines: 35
  8. Message-ID: <1152701803.121523.47440@m79g2000cwm.googlegroups.com>
  9. References: <1150968124.244241.88040@m73g2000cwd.googlegroups.com>
  10.    <pan.2006.06.22.15.25.00.961019@era4.eracc.UUCP>
  11. NNTP-Posting-Host: 82.152.54.204
  12. Mime-Version: 1.0
  13. Content-Type: text/plain; charset="iso-8859-1"
  14. X-Trace: posting.google.com 1152701806 7666 127.0.0.1 (12 Jul 2006 10:56:46 GMT)
  15. X-Complaints-To: groups-abuse@google.com
  16. NNTP-Posting-Date: Wed, 12 Jul 2006 10:56:46 +0000 (UTC)
  17. User-Agent: G2/0.2
  18. X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4,gzip(gfe),gzip(gfe)
  19. X-HTTP-Via: 1.1 XY01I09
  20. Complaints-To: groups-abuse@google.com
  21. Injection-Info: m79g2000cwm.googlegroups.com; posting-host=82.152.54.204;
  22.    posting-account=yqS6-w0AAADAbpnyp3DIFXBoon3WcvY2
  23. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15641
  24.  
  25. ERACC wrote:
  26.  
  27. > On Thu, 22 Jun 2006 02:22:04 -0700, robert.oo.watson wrote:
  28. >
  29. > > I have a device which can receive file upload using the XMODEM or
  30. > > XMODEM-1K protocol.  I am wondering how to achieve this using kermit,
  31. > > or maybe there are other programs suitable for the job.  The platform I
  32. > > am using is Mandrake Linux.
  33. >
  34. > Hi Robert. I have not done this personally, however, one should be able to
  35. > use the programs from the 'lrzsz' package with c-kermit. Here is the
  36. > information about 'lrzsz' on my Mandriva 2006.0:
  37. >
  38. [snip]
  39.  
  40. Hi,
  41.  
  42. Thanks for your help.  I have figured out how to do this.
  43.  
  44. - Install lrzsz package (I am using mandrake 10.0).
  45. - Set the kermit as the following:
  46. C-Kermit>set parity none
  47. C-Kermit>set carrier-watch off
  48. C-Kermit>set prefixing all
  49. C-Kermit>set reliable off
  50. C-Kermit>set clearchannel off
  51. C-Kermit>set protocol xmodem {} {} {sx -k %s} {sx -k %s} {rx %s} {rx
  52. %s}
  53. - Send the file with:
  54. C-Kermit>send /binary filename
  55.  
  56. Best regards,
  57.  
  58. Robertoo
  59.